home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / ADA / GNAT / !gcc / adainc / 2 / adb / a-tifiio < prev    next >
Text File  |  1996-02-12  |  5KB  |  124 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                 A D A . T E X T _ I O . F I X E D _ I O                  --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --     Copyright (C) 1992,1993,1994, 1995 Free Software Foundation, Inc.    --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNAT was originally developed  by the GNAT team at  New York University. --
  32. -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
  33. --                                                                          --
  34. ------------------------------------------------------------------------------
  35.  
  36. with Ada.Text_IO.Float_Aux;
  37.  
  38. package body Ada.Text_IO.Fixed_IO is
  39.  
  40.    --  Note: we use the floating-point I/O routines for input/output of
  41.    --  ordinary fixed-point. This works fine for fixed-point declarations
  42.    --  whose mantissa is no longer than the mantissa of Long_Long_Float,
  43.    --  and we simply consider that we have only partial support for fixed-
  44.    --  point types with larger mantissas (this situation will not arise on
  45.    --  the x86, but it will rise on machines only supporting IEEE long).
  46.  
  47.    package Aux renames Ada.Text_IO.Float_Aux;
  48.  
  49.    ---------
  50.    -- Get --
  51.    ---------
  52.  
  53.    procedure Get
  54.      (File  : in File_Type;
  55.       Item  : out Num;
  56.       Width : in Field := 0)
  57.    is
  58.    begin
  59.       Aux.Get (File, Long_Long_Float (Item), Width);
  60.  
  61.    exception
  62.       when Constraint_Error => raise Data_Error;
  63.    end Get;
  64.  
  65.    procedure Get
  66.      (Item  : out Num;
  67.       Width : in Field := 0)
  68.    is
  69.    begin
  70.       Aux.Get (Current_In, Long_Long_Float (Item), Width);
  71.  
  72.    exception
  73.       when Constraint_Error => raise Data_Error;
  74.    end Get;
  75.  
  76.    procedure Get
  77.      (From : in String;
  78.       Item : out Num;
  79.       Last : out Positive)
  80.    is
  81.    begin
  82.       Aux.Gets (From, Long_Long_Float (Item), Last);
  83.  
  84.    exception
  85.       when Constraint_Error => raise Data_Error;
  86.    end Get;
  87.  
  88.    ---------
  89.    -- Put --
  90.    ---------
  91.  
  92.    procedure Put
  93.      (File : in File_Type;
  94.       Item : in Num;
  95.       Fore : in Field := Default_Fore;
  96.       Aft  : in Field := Default_Aft;
  97.       Exp  : in Field := Default_Exp)
  98.    is
  99.    begin
  100.       Aux.Put (File, Long_Long_Float (Item), Fore, Aft, Exp);
  101.    end Put;
  102.  
  103.    procedure Put
  104.      (Item : in Num;
  105.       Fore : in Field := Default_Fore;
  106.       Aft  : in Field := Default_Aft;
  107.       Exp  : in Field := Default_Exp)
  108.    is
  109.    begin
  110.       Aux.Put (Current_Out, Long_Long_Float (Item), Fore, Aft, Exp);
  111.    end Put;
  112.  
  113.    procedure Put
  114.      (To   : out String;
  115.       Item : in Num;
  116.       Aft  : in Field := Default_Aft;
  117.       Exp  : in Field := Default_Exp)
  118.    is
  119.    begin
  120.       Aux.Puts (To, Long_Long_Float (Item), Aft, Exp);
  121.    end Put;
  122.  
  123. end Ada.Text_IO.Fixed_IO;
  124.